home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / gnu / textutl3.lha / textutils-1.3 / cat / fold.1 < prev    next >
Text File  |  1992-09-22  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. FOLD(1L)          MISC. REFERENCE MANUAL PAGES           FOLD(1L)
  5.  
  6.  
  7.  
  8. NAME
  9.      fold - wrap each input line to fit in specified width
  10.  
  11. SYNOPSIS
  12.      fold [-bs] [-w width] [--bytes]  [--spaces]  [--width=width]
  13.      [file...]
  14.  
  15. DESCRIPTION
  16.      This manual page documents the GNU version  of  fold.   fold
  17.      prints  the  specified  files, or the standard input when no
  18.      files are given or the filename `-' is encountered,  on  the
  19.      standard output.  It breaks long lines into multiple shorter
  20.      lines by inserting a newline at column 80.  It counts screen
  21.      columns,  so  tab  characters  usually  take  more  than one
  22.      column, backspace characters decrease the column count,  and
  23.      carriage  return  characters  set  the  column count back to
  24.      zero.
  25.  
  26.   OPTIONS
  27.      -_b, --_b_y_t_e_s
  28.           Count bytes rather than columns, so  that  tabs,  back-
  29.           spaces, and carriage returns are each counted as taking
  30.           up one column, just like other characters.
  31.  
  32.      -_s, --_s_p_a_c_e_s
  33.           Break at word boundaries.  If  the  line  contains  any
  34.           blanks,  the  line  is broken after the last blank that
  35.           falls within the maximum line length.  If there are  no
  36.           blanks,  the line is broken at the maximum line length,
  37.           as usual.
  38.  
  39.      -_w, --_w_i_d_t_h _w_i_d_t_h
  40.           Use a maximum line length of _w_i_d_t_h columns  instead  of
  41.           80.
  42.  
  43.      The long-named options can be introduced with `+' as well as
  44.      `--',  for compatibility with previous releases.  Eventually
  45.      support for `+' will be removed, because it is  incompatible
  46.      with the POSIX.2 standard.
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Sun Release 4.1           Last change:                          1
  64.  
  65.  
  66.  
  67.